Skip to main content

All Questions

4votes
4answers
5kviews

Find the nth term of a sequence that consists of Fibonacci and prime numbers interleaved

I have given a series problem 1,2,1,3,2,5,3,7,5.... in which the odd terms forms the Fibonacci series and even terms form the prime number series. I have to write a code in which I have to find the ...
coderina's user avatar
7votes
2answers
4kviews

alternating Fibonacci and prime series

The task is to print the following series 1 2 1 3 2 5 3 7... The elements at odd positions are Fibonacci series terms and the elements at even positions are ...
N_H1922's user avatar
4votes
3answers
2kviews

Lucas sequence implementation

Could you suggest any improvements in this Lucas sequence's implementation: ...
Mike's user avatar
  • 113
3votes
1answer
280views

Testing Fibonacci conjecture

The sequence of Fibonacci numbers is defined as F1 = 1, Fn = Fn−2 + Fn−1. It has been conjectured that for any Fibonacci number F, F2 + 41 is composite. ... [T]ask is to either prove the ...
marmeladze's user avatar
9votes
6answers
10kviews

Program for finding Fibonacci primes

I think it could have been designed with more object orientation. I don't like how one of my methods calls another from within the method, but I wasn't sure how to return the result because it is a ...
Jonny Shanahan's user avatar

close